All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.TextAttachment

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.TextAttachment

public class TextAttachment
extends NativeObject
implements Coding
This class wraps the Objective-C class NSTextAttachment.


Variable Index

 o AttachmentCharacter

Constructor Index

 o TextAttachment()
This default constructor is equivalent to Objective-C's [[NSTextAttachment alloc] init].
 o TextAttachment(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o TextAttachment(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.
 o TextAttachment(FileWrapper)
This constructor has the same effect as calling - initWithFileWrapper: on a newly allocated object.

Method Index

 o attachmentCell()
A wrapper for the - attachmentCell Objective-C instance method.
 o encodeWithCoder(Coder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).
 o fileWrapper()
A wrapper for the - fileWrapper Objective-C instance method.
 o setAttachmentCell(CellForTextAttachment)
A wrapper for the - setAttachmentCell: Objective-C instance method.
 o setFileWrapper(FileWrapper)
A wrapper for the - setFileWrapper: Objective-C instance method.

Variables

 o AttachmentCharacter
 public static final char AttachmentCharacter

Constructors

 o TextAttachment
 protected TextAttachment(boolean shouldAllocate,
                          int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o TextAttachment
 public TextAttachment()
This default constructor is equivalent to Objective-C's [[NSTextAttachment alloc] init].

 o TextAttachment
 public TextAttachment(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o TextAttachment
 public TextAttachment(FileWrapper fileWrapper)
This constructor has the same effect as calling - initWithFileWrapper: on a newly allocated object.

Methods

 o setFileWrapper
 public native void setFileWrapper(FileWrapper fileWrapper)
A wrapper for the - setFileWrapper: Objective-C instance method.

 o fileWrapper
 public native FileWrapper fileWrapper()
A wrapper for the - fileWrapper Objective-C instance method.

 o attachmentCell
 public native CellForTextAttachment attachmentCell()
A wrapper for the - attachmentCell Objective-C instance method.

 o setAttachmentCell
 public native void setAttachmentCell(CellForTextAttachment cell)
A wrapper for the - setAttachmentCell: Objective-C instance method.

 o encodeWithCoder
 public native void encodeWithCoder(Coder aCoder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).


All Packages  Class Hierarchy  This Package  Previous  Next  Index